home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / gfx_card / animconv.lha / AnimConv.adpro next >
Encoding:
Text File  |  1993-07-21  |  644 b   |  29 lines

  1. /*
  2.         Convert DCTV animation to 24 bit frames
  3.         to be loaded into OV's AnimMake
  4.         call Amiga Images BBS - (206)248-2125
  5.                        v32bis - (206)248-1514
  6.  
  7.         Edit as you'll need to, you're on your own!
  8. */
  9.  
  10. options results
  11.  
  12. address "ADPro"
  13.  
  14. GETFILE '"DCTV Animation to convert"'
  15. FName = ADPRO_RESULT
  16.  
  17. LFORMAT "ANIM"
  18. SFORMAT "IFF"
  19. LOAD FName COUNT
  20. FCount = ADPRO_RESULT
  21. do FileNum = 1 to FCount
  22.   LOAD FName FRAME FileNum
  23.   OPERATOR Rendered_To_Raw
  24. /* The next line is optional, but most DCTV animations are hi-res laced */
  25.   OPERATOR Halve
  26.   Name = 'RAM:Pic' || right('0000'||(FileNum),5)
  27.   SAVE Name RAW
  28.   end
  29.